Fighting The Frame: How Framing Police Brutality Influences Blame

Kade Davis1, Nathan Alexander, PhD2, 3


1 Department of Sociology, Morehouse College
2 Department of Curriculum and Instruction, Howard University
3 Program in Applied Data Science and Analytics, Howard University

Overview

This study explores Snow’s Theory of Framing and Tilly’s Theory of Blame by answering the question: How does the framing of police brutality in legacy news articles relate to the way commenters assign blame to groups and individuals involved? This study uses articles produced by legacy news sources regarding Sonya Massey, a Black woman in Springfield, Illinois, shot in her home by two police officers over a dispute regarding a pot of boiling water. Exploratory semantic analysis is used to analyze measures between themes within a subset of news articles and their comments. Semantic measures are compared to examine discuss framing and influence.

Literature Review

Media and sociology scholars approach the concept of framing from differing perspectives but both find that framing significantly affects the lives of those who are framed. This study will reinforce the use of Snow’s framing perspective in combination with Tilly’s blame process by highlighting the interdisciplinary relevance of the subjects.

Snow’s Theory of Framing

Please add notes about Snow’s Theory of Framing.

Tilly’s Theory of Blame

Tilly agrees with this argument positing that blame is a key factor in establishing social movements (Roberge2009?). Many sociologists support Tilly’s claim that blame plays a heavy role in contributing to the effects of framing and acknowledge its connection to Blame. However, few ground the connection in empirical evidence and focus too heavily on the framing aspect of the study, neglecting the role of blame.


Data and Method

This study will analyze legacy news source articles about Sonya Massey. Articles will be gathered from legacy news websites. Legacy news sources have a large following, consistent reliability with experienced editors, and less biased reports than non-legacy sources ((Diel2017?)). I have chosen to analyze articles about Sonya Massey because she has been one of the most recent and prominent cases of police brutality and has much coverage on social media. This study uses 12 articles from the legacy news sources New York Times, ABC, NBC, Washington Post, Fox News, and CNN.

Data

There will be two articles from each news source. “Article 1” will be the oldest article addressing Sonya Massey, and the “Article 2” will be the article directly after the oldest article. This study addresses the first question by finding the frequency of the words in the articles and comments that refer to the themes “Police” or “Massey.” The frequency of these themes (measured by the word count) in the articles are correlated to the themes present within the corresponding article’s comments. There will be a correlational comparison between “article 1” and “article 2” to explore effects of introducing new information. Both will be tested using a chi-square fitness of goodness test.

Method

library(ggplot2)
library(quanteda.textplots)

analysis_dir <- "./data/analysis_objects"

if(!dir_exists(analysis_dir)) {
  dir_create(analysis_dir)
  stop(
    "Analysis directory created at ", analysis_dir, 
    "\nPlease run your analysis pipeline to generate objects."
  )
}

load_analysis_object <- function(object_name) {
  file_path <- path(analysis_dir, paste0(object_name, ".rds"))
  
  if(!file_exists(file_path)) {
    stop("File not found: ", file_path, 
         "\nAvailable files: ", paste(dir_ls(analysis_dir), collapse = "\n"))
  }
  
  tryCatch(
    readRDS(file_path),
    error = function(e) {
      stop("Failed to load ", object_name, ": ", e$message)
    }
  )
}
doc_id source type
fox1comments.txt fox user_comments
fox2comments.txt fox user_comments
nytimes2comments.txt nytimes user_comments
sonyamassey_nytimes.txt nytimes news_article
sonyamassey_nytimes2.txt nytimes news_article
sonyamassey_wapo1.txt wapo news_article
sonyamassey_wapo2.txt wapo news_article
wapo1comments.txt wapo user_comments
wapo2comments.txt wapo user_comments
sonya_abc1.txt abc news_article
sonya_abc2.txt abc news_article
sonya_cnn1.txt cnn news_article
sonya_cnn2.txt cnn news_article
sonya_fox1.txt fox news_article
sonya_fox2.txt fox news_article
sonya_nbc1.txt nbc news_article
sonya_nbc2.txt nbc news_article

Findings

Discussion

Conclusion

Framing has been a prevalent subject within contemporary society, and many scholars have explored its effects on news media. Sociologists, in particular, have made great contributions to the concept; however, there is a significant lack of literature regarding the framing of police brutality in the news. This study explores how the framing of police brutality by legacy news sources affects how the audience assigns blame using semantic analysis to analyze a correlation between themes within articles and their comments.

Acknowledgements

References